home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 65.zip / BS1 part 65 / Chemistetics v2.00.adf / BlackJack / UnPack < prev    next >
Text File  |  1991-01-09  |  642b  |  28 lines

  1. .K ""
  2. echo "This script will unpack the following lharc archives:"
  3. echo ""
  4. echo "    BlackJackLab.lzh    =>    BJL:"
  5. echo ""
  6.  
  7. ask "Do you have a blank disk ready?"
  8. if not WARN
  9.     echo "Try again when you do ..."
  10.     echo "All Done.  Click close gadget to get rid of window."
  11.     endcli
  12. endif
  13.  
  14. ask "Is floppy drive df1: free?"
  15. if not WARN
  16.     echo "You will need to do the unpacking yourself."
  17.     echo "All Done.  Click close gadget to get rid of window."
  18.     endcli
  19. endif
  20.  
  21. echo "Formatting and unpacking disk."
  22.  
  23. sys:system/format drive df1: name BJL noicons
  24. :c/lharc -x -a -m x BlackJackLab.lzh BJL:
  25.  
  26. echo "All Done.  Click close gadget to get rid of window."
  27. endcli
  28.